compress/flate.huffmanBitWriter.bits (field)
16 uses
compress/flate (current package)
huffman_bit_writer.go#L80: bits uint64
huffman_bit_writer.go#L108: w.bits, w.nbits, w.nbytes, w.err = 0, 0, 0, nil
huffman_bit_writer.go#L118: w.bytes[n] = byte(w.bits)
huffman_bit_writer.go#L119: w.bits >>= 8
huffman_bit_writer.go#L127: w.bits = 0
huffman_bit_writer.go#L143: w.bits |= uint64(b) << w.nbits
huffman_bit_writer.go#L146: bits := w.bits
huffman_bit_writer.go#L147: w.bits >>= 48
huffman_bit_writer.go#L176: w.bytes[n] = byte(w.bits)
huffman_bit_writer.go#L177: w.bits >>= 8
huffman_bit_writer.go#L331: w.bits |= uint64(c.code) << w.nbits
huffman_bit_writer.go#L334: bits := w.bits
huffman_bit_writer.go#L335: w.bits >>= 48
huffman_bit_writer.go#L663: w.bits |= uint64(c.code) << w.nbits
huffman_bit_writer.go#L669: bits := w.bits
huffman_bit_writer.go#L670: w.bits >>= 48
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |